Bounds

data class Bounds(left: Int?, top: Int?, width: Int?, height: Int?, windowState: WindowState?)

Browser window bounds information

Constructors

Bounds
Link copied to clipboard
fun Bounds(left: Int? = null, top: Int? = null, width: Int? = null, height: Int? = null, windowState: WindowState? = null)

Properties

height
Link copied to clipboard
val height: Int? = null
The window height in pixels.
left
Link copied to clipboard
val left: Int? = null
The offset from the left edge of the screen to the window in pixels.
top
Link copied to clipboard
val top: Int? = null
The offset from the top edge of the screen to the window in pixels.
width
Link copied to clipboard
val width: Int? = null
The window width in pixels.
windowState
Link copied to clipboard
val windowState: WindowState? = null
The window state.

Sources

jvm source
Link copied to clipboard